home *** CD-ROM | disk | FTP | other *** search
- Path: airdmhor.gen.nz!not-for-mail
- From: gumboot@airdmhor.gen.nz (Simon Hosie)
- Newsgroups: comp.lang.c
- Subject: compilers
- Date: 16 Mar 1996 03:29:10 +1300
- Organization: Airdmhor : a couple of BBS's, a bunch of people, and a cat.
- Message-ID: <4iburm$aps@airdmhor.gen.nz>
- NNTP-Posting-Host: airdmhor.gen.nz
- X-Newsreader: TIN [version 1.2 PL2]
-
- Does anyone know of a compiler that can take
-
- for (;;)
- {
- Stuff(1);
- if (Cond)
- break;
- Stuff(2);
- }
-
- and make
-
- goto EntryPoint;
- do
- {
- Stuff(2);
- EntryPoint:
- Stuff(1);
- } while (Cond);
-